for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import BarChartMetric from './components/BarChartMetric'
import BaseBarChartMetric from './components/Base/BarChartMetric'
Nova.booting((Vue, router) => {
router
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.
Nova
/** global: Nova */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
Vue.config.devtools = true
Vue.component('base-bar-chart-metric', BaseBarChartMetric)
Vue.component('bar-chart-metric', BarChartMetric)
})
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.